home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / test / sample_doctest.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  2KB  |  85 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. """This is a sample module that doesn't really test anything all that
  5.    interesting.
  6.  
  7. It simply has a few tests, some of which succeed and some of which fail.
  8.  
  9. It's important that the numbers remain constant as another test is
  10. testing the running of these tests.
  11.  
  12.  
  13. >>> 2+2
  14. 4
  15. """
  16.  
  17. def foo():
  18.     '''
  19.  
  20.     >>> 2+2
  21.     5
  22.  
  23.     >>> 2+2
  24.     4
  25.     '''
  26.     pass
  27.  
  28.  
  29. def bar():
  30.     '''
  31.  
  32.     >>> 2+2
  33.     4
  34.     '''
  35.     pass
  36.  
  37.  
  38. def test_silly_setup():
  39.     '''
  40.  
  41.     >>> import test.test_doctest
  42.     >>> test.test_doctest.sillySetup
  43.     True
  44.     '''
  45.     pass
  46.  
  47.  
  48. def w_blank():
  49.     """
  50.     >>> if 1:
  51.     ...    print 'a'
  52.     ...    print
  53.     ...    print 'b'
  54.     a
  55.     <BLANKLINE>
  56.     b
  57.     """
  58.     pass
  59.  
  60. x = 1
  61.  
  62. def x_is_one():
  63.     '''
  64.     >>> x
  65.     1
  66.     '''
  67.     pass
  68.  
  69.  
  70. def y_is_one():
  71.     '''
  72.     >>> y
  73.     1
  74.     '''
  75.     pass
  76.  
  77. __test__ = {
  78.     'good': '\n                    >>> 42\n                    42\n                    ',
  79.     'bad': '\n                    >>> 42\n                    666\n                    ' }
  80.  
  81. def test_suite():
  82.     import doctest as doctest
  83.     return doctest.DocTestSuite()
  84.  
  85.